Dew Math for .NET
|
Solve overdetermined or underdetermined system of real linear equations.
Solve overdetermined or underdetermined real linear systems involving a Rows-by-Cols matrix or its transpose, using a QR or LQ factorization of the calling matrix. It is assumed that the calling matrix has full rank. The following options are provided:
1.If Op = opNone and m >= n: find the least squares solution of an overdetermined system, i.e., solve the least squares problem
2.If Op = opNone and m < n: find the minimum norm solution of an underdetermined system
3.If Op = opTrans and m >= n: find the minimum norm solution of an undetermined system
4.If Op = opTran and m < n: find the least squares solution of an overdetermined system, i.e., solve the least squares problem
5.If Op = opHerm and m >= n: find the minimum norm solution of an undetermined system
6.If Op = opHerm and m < n: find the least squares solution of an overdetermined system, i.e., solve the least squares problem
Note If the parameters are of TVec type (const Vectors), the routine requires less pre and post processing.
Copyright (c) 1999-2024 by Dew Research. All rights reserved.
|
What do you think about this topic? Send feedback!
|